home *** CD-ROM | disk | FTP | other *** search
/ ftp.mactech.com 2010 / ftp.mactech.com.tar / ftp.mactech.com / machack / Hacks97 / WarriorsProgress.sit / Warrior’s Progress / source code / Source / Libraries / Files / Errors / SoftwareVolumeLockError.h < prev    next >
Text File  |  1997-06-28  |  340b  |  21 lines

  1. // SoftwareVolumeLockError.h
  2.  
  3. #ifndef SoftwareVolumeLockError_h
  4. #define SoftwareVolumeLockError_h
  5.  
  6. #ifndef VolumeLockError_h
  7. #include "VolumeLockError.h"
  8. #endif
  9.  
  10. class SoftwareVolumeLockError: VolumeLockError
  11.   {
  12.     public:
  13.         SoftwareVolumeLockError( OSErr error )
  14.           : VolumeLockError( error )
  15.           {}
  16.         
  17.         // Used for vLckdErr
  18.   };
  19.  
  20. #endif
  21.